home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strcspn.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  2KB  |  57 lines

  1. /* 
  2.  * strcspn.c --
  3.  *
  4.  *    Source code for the "strcspn" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcspn.c,v 1.2 89/03/22 16:06:53 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strcspn --
  26.  *
  27.  *    Count how many of the leading characters there are in "string"
  28.  *    before there's one that's also in "chars".
  29.  *
  30.  * Results:
  31.  *    The return value is the index of the first character in "string"
  32.  *    that is also in "chars".  If there is no such character, then
  33.  *    the return value is the length of "string".
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. strcspn(string, chars)
  43.     char *string;            /* String to search. */
  44.     char *chars;            /* Characters to look for in string. */
  45. {
  46.     register char c, *p, *s;
  47.  
  48.     for (s = string, c = *s; c != 0; s++, c = *s) {
  49.     for (p = chars; *p != 0; p++) {
  50.         if (c == *p) {
  51.         return s-string;
  52.         }
  53.     }
  54.     }
  55.     return s-string;
  56. }
  57.